cURL
curl --request GET \ --url https://api.xpander.ai/v1/toolkits \ --header 'x-api-key: <api-key>'
{ "items": [ { "id": "<string>", "organization_id": "<string>", "name": "<string>", "created_by": "<string>", "description": "<string>", "tools": [] } ], "total": 123, "page": 123, "per_page": 123, "total_pages": 123 }
Returns a paginated list of available toolkits
Show Toolkit Object
curl -X GET -H "x-api-key: YOUR_API_KEY" \ "https://api.xpander.ai/v1/toolkits?page=1&per_page=20"
{ "items": [], "total": 0, "page": 1, "per_page": 20, "total_pages": 0 }
API Key for authentication
Page number (starting from 1)
x >= 1
Items per page (max 50)
1 <= x <= 50
Successful Response
Show child attributes
Was this page helpful?